/* Reset and Base Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

:root {
    --navy-blue: #00013b;
    --highlight-green: #1de604;
    --grey-white: #d9d9d9;
    --white: #ffffff;
    --black: #000000;
    --dark-grey: #333333;
    --light-grey: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1de604 0%, #00b300 100%);
    --gradient-secondary: linear-gradient(135deg, #00013b 0%, #1a1a4a 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--navy-blue);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 1, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 217, 217, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 3px solid var(--highlight-green);
    padding: 2px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    object-fit: cover;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: var(--white);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--grey-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--highlight-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--grey-white);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--highlight-green);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.secondary-button:hover {
    background: var(--highlight-green);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.3);
    text-decoration: none;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-white);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.highlight:last-child {
    margin-left: 30px;
}

.highlight:hover {
    color: var(--highlight-green);
    transform: translateY(-2px);
}

.highlight i {
    color: var(--highlight-green);
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 150px;
}

.phone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.check-it-out {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: var(--navy-blue);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--highlight-green);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.app-screenshot {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.app-screenshot.active {
    opacity: 1;
}

.carousel-btn {
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey-white);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--highlight-green);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--highlight-green);
    transform: scale(1.1);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-blue);
    padding: 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    font-size: 0.85rem;
    min-width: 120px;
}

.card-1 {
    top: 5%;
    right: -120px;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    left: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -100px;
    animation-delay: 4s;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.player-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.price-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.price-change.positive {
    color: #00b300;
}

.price-change.negative {
    color: #ff4444;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 800;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
    color: var(--navy-blue);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,1,59,0.02)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--grey-white);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--highlight-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy-blue);
}

.feature-description {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--gradient-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-description {
    color: var(--grey-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--highlight-green);
    opacity: 0.3;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-description {
    color: var(--grey-white);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--light-grey);
    color: var(--navy-blue);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,1,59,0.02)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--grey-white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--highlight-green);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 10;
}

.faq-question-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(29, 230, 4, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--highlight-green);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    padding: 20px 0 0 0;
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid rgba(29, 230, 4, 0.2);
}

.faq-answer p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--grey-white);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Join Team Section */
.join-team-section {
    margin-top: 80px;
    text-align: center;
}

.join-team-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-team-description {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.join-team-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: transparent;
    color: var(--green);
    text-decoration: none;
    border: 2px solid var(--green);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-team-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--green);
    transition: width 0.3s ease;
    z-index: -1;
}

.join-team-button:hover::before {
    width: 100%;
}

.join-team-button:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.3);
}

.join-team-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.join-team-button:hover i {
    transform: translateX(3px);
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%231de604" stroke-width="0.4" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}


.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.title-line:nth-child(3) {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.title-line.highlight-underline {
    position: relative;
    color: var(--white);
}

.title-line.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 8px;
    background: radial-gradient(ellipse, rgba(29, 230, 4, 0.6), rgba(29, 230, 4, 0.2), transparent);
    border-radius: 50%;
    animation: underlineGlow 3s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes underlineGlow {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.8);
    }
}

.title-logo {
    margin-top: 20px;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.title-logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.title-logo-img:hover {
    transform: scale(1.05);
}

.about-hero-description {
    font-size: 1.4rem;
    color: var(--grey);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #00ff88);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(29, 230, 4, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(29, 230, 4, 0.2);
    min-width: 180px;
    width: 200px;
    height: 120px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(29, 230, 4, 0.15);
    box-shadow: 0 10px 30px rgba(29, 230, 4, 0.2);
    text-decoration: none;
    color: inherit;
}

.stat-link {
    cursor: pointer;
}

.stat-link:hover .stat-title {
    color: var(--white);
    text-shadow: 0 0 15px rgba(29, 230, 4, 0.8);
}

.stat-link:hover .stat-description {
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 230, 4, 0.1) 0%, rgba(29, 230, 4, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.co-founders {
    padding: 100px 0;
    background: var(--white);
}

.co-founders .section-title {
    color: #00013b !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.co-founders .section-description {
    color: #333333 !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.co-founders .founder-bio {
    color: #333333 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.co-founders .founder-bio:last-child {
    margin-bottom: 0;
}

.founders-container {
    margin-top: 80px;
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    min-height: 300px;
}

.founder-row.founder-right {
    margin-top: 60px;
}

.founder-row:last-child {
    margin-bottom: 0;
}

.founder-left {
    flex-direction: row;
}

.founder-right {
    flex-direction: row-reverse;
}

.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
    margin: 30px auto 0;
    opacity: 0.6;
}

.founder-visual {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 400px;
}

.founder-circle.large {
    width: 350px;
    height: 350px;
    margin-bottom: 30px;
    position: relative;
}

.founder-role {
    text-align: center;
    position: relative;
    z-index: 100;
    background: transparent;
    padding: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

.founder-content {
    flex: 1;
    padding: 0 20px;
}

.founder-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green) 0%, #00cc00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 8rem;
    box-shadow: 0 25px 60px rgba(29, 230, 4, 0.3), 0 0 40px rgba(29, 230, 4, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(29, 230, 4, 0.4), 0 0 50px rgba(29, 230, 4, 0.5);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--green);
    box-shadow: 0 25px 60px rgba(29, 230, 4, 0.3), 0 0 40px rgba(29, 230, 4, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(29, 230, 4, 0.4), 0 0 50px rgba(29, 230, 4, 0.5);
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00013b !important;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.founder-title {
    font-size: 1.1rem;
    color: #00013b !important;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.founder-education {
    font-size: 0.95rem;
    color: #00013b !important;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.founder-bio {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

.founder-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 120px;
    justify-content: center;
}

.social-btn.instagram {
    background: var(--green);
    color: #00013b !important;
    border-color: var(--green);
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
}

.social-btn.instagram:hover {
    background: #00013b;
    color: var(--green) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.5);
}

.social-btn.linkedin {
    background: var(--green);
    color: #00013b !important;
    border-color: var(--green);
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
}

.social-btn.linkedin:hover {
    background: #00013b;
    color: var(--green) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 1, 59, 0.5);
}

.social-btn i {
    font-size: 1rem;
}

/* Join Us Section */
.join-us {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.join-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 30px;
}

.join-description {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 50px;
    line-height: 1.6;
    opacity: 0.8;
}

.join-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-btn.primary {
    background: var(--green);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
}

.join-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.4);
}

.join-btn.secondary {
    background: var(--green);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
}

.join-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.4);
}

.join-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        height: 100px;
    }
    
    .stat-title {
        font-size: 1.2rem;
        height: 1.8rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .founder-row {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .founder-visual {
        order: 1;
    }
    
    .founder-content {
        order: 2;
    }
    
    .founder-row.founder-right .founder-visual {
        order: 1;
    }
    
    .founder-row.founder-right .founder-content {
        order: 2;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .join-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .join-title {
        font-size: 2.2rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .nav-link {
        padding: 10px 15px;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .cta-button {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        height: 90px;
        padding: 20px 15px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        height: 1.6rem;
    }
    
    .stat-description {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .join-title {
        font-size: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .founder-bio {
        font-size: 1rem;
    }
    
    .join-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .stat-item {
        width: 180px;
        height: 110px;
    }
    
    .founder-row {
        gap: 40px;
    }
    
    .join-buttons {
        gap: 25px;
    }
}

.our-story {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: -150px 0 0 0;
}

.story-card {
    background: rgba(29, 230, 4, 0.05);
    border: 1px solid rgba(29, 230, 4, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 230, 4, 0.1), transparent);
    transition: left 0.5s ease;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 230, 4, 0.3);
    box-shadow: 0 10px 30px rgba(29, 230, 4, 0.1);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(29, 230, 4, 0.3);
}

.story-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-card-text {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}


.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%231de604" stroke-width="0.4" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: 1.2rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 25px;
}

.join-team-about {
    padding: 100px 0;
    background: var(--white);
}

.join-team-about .join-team-content {
    text-align: center;
}

.join-team-about .join-team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-team-about .join-team-description {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.nav-link.active {
    color: var(--green);
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .founder-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .founder-left,
    .founder-right {
        flex-direction: column;
    }
    
    .founder-visual {
        min-width: auto;
    }
    
    .founder-circle.large {
        width: 250px;
        height: 250px;
    }
    
    .founder-placeholder {
        font-size: 6rem;
    }
    
    .founder-name {
        font-size: 1.6rem;
        color: #00013b !important;
    }
    
    .founder-title {
        font-size: 1rem;
        color: #00013b !important;
    }
    
    .founder-bio {
        font-size: 1rem;
    }
    
    .founder-education {
        color: #00013b !important;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.secondary-button.large {
    padding: 18px 38px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(217, 217, 217, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--grey-white);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-link {
    display: block;
    color: var(--grey-white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--highlight-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(217, 217, 217, 0.1);
}

.footer-copyright {
    color: var(--grey-white);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(29, 230, 4, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-green);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--highlight-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-visual {
        padding-left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .check-it-out {
        font-size: 1.1rem;
    }
    
    .phone-container {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .floating-cards {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
    
    .check-it-out {
        font-size: 1rem;
    }
}